From: Rany Hany Date: Fri, 28 Nov 2025 15:35:29 +0000 (+0000) Subject: luci-mod-network: bump reassociation_deadline default to 20000 X-Git-Url: http://git.openwrt.org/%22https:/collectd.org/%22http:/www.crowdsec.net//%22https%22/%22https:/collectd.org/%22http:/www.crowdsec.net/%22https%22?a=commitdiff_plain;h=ec39df25b55c1cadfd3f542c69ce3225d3c1bd4a;p=project%2Fluci.git luci-mod-network: bump reassociation_deadline default to 20000 With OpenWRT commit [1], the default for reassociation_deadline is now 20000. Update LuCI to reflect that change. [1]: https://github.com/openwrt/openwrt/commit/a7790ce41099549cf6c97765561ac716d102ae5e Signed-off-by: Rany Hany --- diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index 68c2708a1a..a5de279c15 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -1885,7 +1885,7 @@ return view.extend({ o = ss.taboption('roaming', form.Value, 'reassociation_deadline', _('Reassociation Deadline'), _('time units (TUs / 1.024 ms) [1000-65535]')); o.depends({ ieee80211r: '1' }); - o.placeholder = '1000'; + o.placeholder = '20000'; o.datatype = 'range(1000,65535)'; o.rmempty = true;